home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ Recycle Bin Menu.xpl < prev    next >
Text File  |  2001-01-23  |  2KB  |  72 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="7"
  3. "COUNT"="4"
  4. "UIPATH"="Appearance\Desktop\Icons\'Recycle Bin' Options"
  5. "NAME"="Recycle Bin Menu"
  6. "VERSION"="2.04"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Do not display menu on Recycle Bin"
  9. "TEXT 2"="Display "Rename" only"
  10. "TEXT 3"="Display "Delete Only" only"
  11. "TEXT 4"="Display "Delete" and "Rename""
  12. "DESCRIPTION 1"="Check Box to select which menu items should appear if you right-click the Recycle Bin."
  13. "AUTHOR"="Ojatex@aol.com"
  14. "CONTACTURL"="http://members.aol.com/ojatex/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17. "COMMENT 2"="Whatever ya call it, it's still holds Garbage."
  18.  
  19.  
  20. sP="HKCR\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\ShellFolder\"
  21. v1="Attributes" 'Binary
  22.  
  23. val1="40010020" ' no menu
  24. val2="50010020" ' = Add Rename Only
  25. val3="60010020" '= Add Delete Only
  26. val4="70010020" '= Add Delete and Rename
  27.  
  28.  
  29. Sub Plugin_Initialize 
  30.  if RegPathExists(sP) then
  31.     s=RegReadValue(sP&v1)
  32.  
  33.     if s=val1 or IsEmpty(s) then SetUIElement 1,true
  34.     if s=val2 then SetUIElement 2,true
  35.     if s=val3 then SetUIElement 3,true
  36.     if s=val4 then SetUIElement 4,true   
  37.  
  38.  
  39.  else
  40.     Call Disable
  41.  end if
  42. End Sub
  43.  
  44.  
  45.  
  46. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  47.  
  48.   if GetUIElement(4)=true then
  49.      s=val4
  50.   else
  51.      if GetUIElement(3)=true then
  52.         s=val3
  53.      else
  54.         if GetUIElement(2)=true then
  55.            s=val2
  56.         else
  57.            s=val1
  58.         end if
  59.      end if
  60.    end if
  61.  
  62.    Call RegWriteValue(sp&v1,s,3)
  63.    Call IndicateSettingChange()
  64. End Sub
  65.  
  66.  
  67. Sub Plugin_Terminate 
  68. End Sub
  69.  
  70.  
  71.  
  72.